/* ========== Home page navbar – black style (same as login/auth) ========== */
.home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: #050917;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease;
}
.home-nav-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.home-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.home-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.home-nav-logo img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 10px;
}
.home-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.home-nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.home-nav-links a:hover {
  color: #fff;
}
.home-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.home-nav-actions .language-switch {
  margin-right: 0;
}
.home-nav-actions .language-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #e5e7eb;
  padding: 5px 12px !important;
  min-height: auto !important;
  font-size: 13px !important;
  height: auto;
  line-height: 1.2;
}
.home-nav-actions .language-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.home-nav-actions .language-arrow {
  color: rgba(255, 255, 255, 0.7);
}
.home-nav-actions .language-flag {
  font-size: 14px !important;
}
.home-nav-actions .language-name {
  font-size: 13px !important;
}
.home-nav .language-options {
  background: #2a2b2e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.home-nav .language-option {
  color: #e5e7eb;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.home-nav .language-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.home-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  min-height: 34px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}
.home-nav-btn-ghost {
  color: #e5e7eb;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.home-nav-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.home-nav-btn-primary {
  color: #1a1b1c;
  background: #fff;
  border: 1px solid #fff;
}
.home-nav-btn-primary:hover {
  background: #e5e7eb;
  border-color: #e5e7eb;
  transform: translateY(-1px);
}
.home-nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #e5e7eb;
}
.home-nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.home-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: #050917;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  z-index: 9998;
  transition: transform 0.3s ease, visibility 0.3s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.home-nav-drawer[aria-hidden="true"] {
  transform: translateX(100%);
  visibility: hidden;
}
.home-nav-drawer[aria-hidden="false"] {
  transform: translateX(0);
  visibility: visible;
}
.home-nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.home-nav-drawer-links .drawer-link {
  display: block;
  padding: 12px 0;
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.home-nav-drawer-links .drawer-link:hover {
  color: #fff;
}
.home-nav-drawer-lang {
  margin-bottom: 24px;
}
.home-nav-drawer-lang .language-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #e5e7eb;
}
.home-nav-drawer-lang .language-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.home-nav-drawer-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.home-nav-drawer-cta-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.home-nav-drawer-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.home-nav-drawer-cta:not(.home-nav-drawer-cta-ghost) {
  background: #fff;
  color: #1a1b1c;
  border: 1px solid #fff;
}
.home-nav-drawer-cta:not(.home-nav-drawer-cta-ghost):hover {
  background: #e5e7eb;
  color: #1a1b1c;
}
@media (max-width: 1024px) {
  .home-nav-links { display: none; }
  .home-nav-actions .home-nav-btn { display: none; }
  .home-nav-actions .language-switch { display: block; }
  .home-nav-burger { display: flex; }
}
@media (max-width: 480px) {
  .home-nav-inner { padding: 0 16px; }
  .home-nav-logo img { height: 32px; }
}

/* Video Container Styles */
.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-play-icon:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon i {
  font-size: 24px;
  color: #333;
  margin-left: 4px;
}

/* Fixed Contact Icons */
.fixed-contact-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-right: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.phone-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* ========== Home page – full black theme (same as login/auth) ========== */
body.page-home {
  background: #050917;
}
.page-home .hero,
.page-home #features,
.page-home #how-to-use,
.page-home #pricing,
.page-home #testimonials,
.page-home #demo,
.page-home #contact {
  background: #050917 !important;
}
/* Hero: professional background + height */
.page-home .hero {
  min-height: 860px;
  padding: 160px 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0c0a1d 0%, #0f0e24 18%, #1a1735 40%, #16133a 60%, #0f0e24 82%, #0c0a1d 100%) !important;
  position: relative;
  overflow: hidden;
}
/* Soft glow layers – static */
.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(99, 102, 241, 0.22) 0%, transparent 50%),
              radial-gradient(ellipse 70% 50% at 85% 60%, rgba(139, 92, 246, 0.18) 0%, transparent 50%),
              radial-gradient(ellipse 60% 45% at 15% 75%, rgba(59, 130, 246, 0.14) 0%, transparent 50%),
              radial-gradient(ellipse 50% 30% at 50% 100%, rgba(99, 102, 241, 0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
/* Moving aurora-style gradient – subtle animation */
.page-home .hero::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse 100% 80% at 30% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
              radial-gradient(ellipse 80% 60% at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 45%);
  background-size: 200% 200%;
  animation: hero-aurora 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes hero-aurora {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  33% { transform: translate(3%, -2%) scale(1.02); opacity: 0.9; }
  66% { transform: translate(-2%, 2%) scale(0.98); opacity: 1; }
}

/* Hero background: single layer scrolling up */
.page-home .hero-bg-images-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-home .hero-bg-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 2px;
  pointer-events: none;
}
.page-home .hero-bg-scroll-up {
  animation: hero-bg-scroll-up 55s linear infinite;
}
@keyframes hero-bg-scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.page-home .hero-bg-image-tile {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}
/* Dark overlay so hero text stays readable */
.page-home .hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0.5;
  background: linear-gradient(180deg, rgba(26, 15, 5, 0.82) 0%, rgba(26, 15, 5, 0.88) 50%, rgba(26, 15, 5, 0.92) 100%);
  pointer-events: none;
}

/* Hero 3D scene – sits on top of hero gradient */
.page-home .hero-3d-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  perspective: 800px;
  overflow: hidden;
  pointer-events: none;
}
.page-home .hero-3d-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.55;
  animation: hero-3d-float 14s ease-in-out infinite;
}
.page-home .hero-3d-orb-1 {
  width: 420px;
  height: 420px;
  left: 8%;
  top: 15%;
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.45), rgba(99, 102, 241, 0.08));
  transform: rotateX(20deg) rotateZ(15deg);
  animation-delay: 0s;
}
.page-home .hero-3d-orb-2 {
  width: 340px;
  height: 340px;
  right: 12%;
  top: 48%;
  background: radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.4), rgba(139, 92, 246, 0.06));
  transform: rotateX(-15deg) rotateZ(-20deg);
  animation-delay: -4s;
}
.page-home .hero-3d-orb-3 {
  width: 280px;
  height: 280px;
  left: 48%;
  bottom: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.35), transparent 65%);
  transform: rotateX(10deg) rotateZ(25deg);
  animation-delay: -8s;
}
@keyframes hero-3d-float {
  0%, 100% { transform: rotateX(20deg) rotateZ(15deg) translate(0, 0) scale(1); }
  25% { transform: rotateX(18deg) rotateZ(22deg) translate(15px, -25px) scale(1.06); }
  50% { transform: rotateX(14deg) rotateZ(28deg) translate(-10px, -15px) scale(1.04); }
  75% { transform: rotateX(22deg) rotateZ(18deg) translate(8px, 10px) scale(1.05); }
}
.page-home .hero-3d-orb-2 {
  animation-name: hero-3d-float-2;
}
@keyframes hero-3d-float-2 {
  0%, 100% { transform: rotateX(-15deg) rotateZ(-20deg) translate(0, 0) scale(1); }
  33% { transform: rotateX(-12deg) rotateZ(-14deg) translate(-20px, 18px) scale(1.07); }
  66% { transform: rotateX(-18deg) rotateZ(-24deg) translate(12px, -12px) scale(1.05); }
}
.page-home .hero-3d-orb-3 {
  animation-name: hero-3d-float-3;
}
@keyframes hero-3d-float-3 {
  0%, 100% { transform: rotateX(10deg) rotateZ(25deg) translate(0, 0); }
  50% { transform: rotateX(6deg) rotateZ(18deg) translate(-15px, -18px) scale(1.08); }
}
/* Grid: subtle moving perspective */
.page-home .hero-3d-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
  animation: hero-grid-drift 20s linear infinite;
  pointer-events: none;
}
@keyframes hero-grid-drift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
.page-home .hero-title {
  color: transparent !important;
  background: linear-gradient(90deg, #e5e7eb 0%, #fff 25%, #a5b4fc 50%, #fff 75%, #e5e7eb 100%) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: home-hero-shine 4s ease-in-out infinite;
}
.page-home .hero-subtitle {
  color: #9ca3af !important;
}
.page-home .btn-primary {
  background: #fff !important;
  color: #1a1b1c !important;
  border: 1px solid #fff !important;
}
.page-home .btn-primary:hover {
  background: #e5e7eb !important;
  color: #1a1b1c !important;
  border-color: #e5e7eb !important;
}
.page-home .btn-secondary {
  background: transparent !important;
  color: #e5e7eb !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}
.page-home .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* ========== Hero 3D / modern style ========== */
.page-home .hero-container-3d {
  perspective: 1200px;
  position: relative;
  z-index: 2;
  display: block;
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 1.5rem 3rem;
}
.page-home .hero-container-3d .hero-content {
  text-align: center;
  transform-style: preserve-3d;
}
.page-home .hero-container-3d .hero-title-3d {
  margin-bottom: 1.25rem;
}
.page-home .hero-container-3d .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  font-size: 1.35rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.9) !important;
  margin-bottom: 2rem;
}
.page-home .hero-container-3d .hero-buttons {
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-home .hero-container-3d .hero-buttons .btn-primary,
.page-home .hero-container-3d .hero-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
}
.page-home .hero-title-3d {
  font-size: clamp(2.75rem, 6vw, 4.5rem) !important;
  font-weight: 800 !important;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: transparent !important;
  background: linear-gradient(135deg, #f1f5f9 0%, #fff 20%, #c7d2fe 45%, #a5b4fc 55%, #fff 80%, #e2e8f0 100%) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.08))
          drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25))
          drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2))
          drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
  transform: translateZ(0);
  animation: home-hero-shine 4s ease-in-out infinite;
}
@keyframes home-hero-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.page-home .hero-content {
  transform-style: preserve-3d;
}
.page-home .hero-btn-primary,
.page-home .hero-btn-secondary {
  transform: translateZ(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease !important;
}
.page-home .hero-btn-primary {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.page-home .hero-btn-primary:hover {
  transform: translateY(-3px) translateZ(8px) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
}
.page-home .hero-btn-secondary:hover {
  transform: translateY(-3px) translateZ(8px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
}

.page-home .section-badge {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #a5b4fc !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.page-home .section-title {
  color: #fff !important;
}
.page-home .section-description {
  color: #9ca3af !important;
}
.page-home .card {
  background: #222326 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
}
.page-home .card:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}
.page-home .card .card-title {
  color: #fff !important;
}
.page-home .card .card-description {
  color: #9ca3af !important;
}
.page-home .card .icon {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #a5b4fc !important;
}
.page-home .video-demo-section {
  background: #050917 !important;
}
.page-home .video-demo-section h2 {
  color: #fff !important;
}
.page-home .video-demo-section p {
  color: #9ca3af !important;
}
.page-home .video-container {
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}
.page-home .pricing-card {
  background: #222326 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.page-home .pricing-card.featured {
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 1px #6366f1, 0 8px 32px rgba(99, 102, 241, 0.2) !important;
}
.page-home .pricing-card .pricing-header h3,
.page-home .pricing-card .pricing-price {
  color: #fff !important;
}
.page-home .pricing-card .pricing-trial,
.page-home .pricing-card .pricing-features li {
  color: #9ca3af !important;
}
.page-home .pricing-btn {
  background: #fff !important;
  color: #1a1b1c !important;
  border: none !important;
}
.page-home .pricing-btn:hover {
  background: #e5e7eb !important;
  color: #1a1b1c !important;
}
.page-home .testimonial-card {
  background: #222326 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.page-home .testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.12) !important;
}
.page-home .testimonial-card .testimonial-info h4 {
  color: #fff !important;
}
.page-home .testimonial-card .testimonial-text {
  color: #d1d5db !important;
}
.page-home #testimonials .testimonial-avatar {
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  height: 52px !important;
  overflow: visible !important;
}
.page-home #testimonials .testimonial-avatar i {
  font-size: 1.25rem !important;
  color: inherit !important;
}
.page-home .testimonial-rating {
  color: #fbbf24 !important;
}
.page-home #contact .form-input {
  background: #222326 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}
.page-home #contact .form-input::placeholder {
  color: #6b7280 !important;
}
.page-home #contact .form-input:focus {
  border-color: rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1) !important;
}
.page-home #contact .form-textarea {
  background: #222326 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}
.page-home #contact .form-btn {
  background: #fff !important;
  color: #1a1b1c !important;
  border: none !important;
}
.page-home #contact .form-btn:hover {
  background: #e5e7eb !important;
  color: #1a1b1c !important;
}
.page-home #contactResponse {
  background: #222326 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #e5e7eb !important;
}
.page-home .hero-carousel-wrapper {
  background: #050917;
}
.page-home .mw-carousel-logo-wrapper {
  background: #222326 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2) !important;
}
.page-home .mw-carousel-name {
  color: #e5e7eb !important;
}
.page-home .mw-carousel-empty {
  color: #9ca3af !important;
}
.page-home footer {
  background: #050917 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.page-home footer h4 {
  color: #fff !important;
}
.page-home footer a,
.page-home footer p {
  color: #9ca3af !important;
}
.page-home footer a:hover {
  color: #fff !important;
}

/* Simple home footer */
.home-footer {
  background: #050917;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
}
.home-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.home-footer-logo {
  display: inline-block;
  text-decoration: none;
}
.home-footer-logo img {
  height: 36px;
  width: auto;
  display: block;
  border-radius: 10px;
}
.home-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.5rem;
}
.home-footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.home-footer-links a:hover {
  color: #fff;
}
.home-footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}
@media (max-width: 560px) {
  .home-footer {
    padding: 1.5rem 0;
  }
  .home-footer-links {
    gap: 1rem;
  }
  .home-footer-links a {
    font-size: 0.85rem;
  }
}

.page-home #pricing h3 {
  color: #fff !important;
}
.page-home #pricing .pricing-price .currency {
  color: #9ca3af !important;
}
.page-home #pricing .pricing-header div[style*="color: #6c757d"] {
  color: #9ca3af !important;
}
.page-home #pricing > div > div[style*="background: white"] {
  background: #222326 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}
.page-home #pricing > div > div[style*="border: 3px solid #fbbf24"] {
  background: #222326 !important;
  border-color: rgba(251, 191, 36, 0.5) !important;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.15) !important;
}
.page-home .pricing-card .pricing-badge {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
  color: #fff !important;
}

/* ========== Home random products grid (card style below carousel) ========== */
.page-home .home-random-products {
  width: 100%;
  background: #050917;
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}
.page-home .home-random-products-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.page-home .home-random-products-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
  padding: 0 2rem;
}
.page-home .home-random-products-desc {
  font-size: 1.1rem;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 2rem;
}
.page-home .home-random-products-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0;
}
.page-home .home-random-product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.page-home .home-random-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.page-home .home-random-product-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f3f4f6;
  overflow: hidden;
}
.page-home .home-random-product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .home-random-product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 1.5rem;
}
.page-home .home-random-product-card-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: #1a1b1c;
  margin: 0.35rem 0.4rem 0.15rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-home .home-random-product-card-store {
  display: block;
  font-size: 0.6rem;
  color: #6b7280;
  padding: 0 0.4rem 0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1200px) {
  .page-home .home-random-products-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 768px) {
  .page-home .home-random-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-random-product-card-title {
    font-size: 0.65rem;
  }
}
@media (max-width: 560px) {
  .page-home .home-random-products {
    padding: 3rem 0;
  }
  .page-home .home-random-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .page-home .home-random-product-card-title {
    font-size: 0.75rem;
  }
  .page-home .home-random-product-card-store {
    font-size: 0.6rem;
  }
  .page-home .home-random-products-title {
    font-size: 1.5rem;
  }
}

/* Hero: offset for fixed home nav */
.page-home .hero {
  padding-top: 72px;
}
.hero-carousel-wrapper {
  margin-top: auto;
  padding-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .fixed-contact-icons {
    right: 15px;
    bottom: 15px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Testimonial avatars – clean initials with distinct colors */
#testimonials .testimonial-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}
#testimonials .testimonial-card:nth-child(1) .testimonial-avatar {
  background: linear-gradient(135deg, #008060 0%, #006e52 100%);
}
#testimonials .testimonial-card:nth-child(2) .testimonial-avatar {
  background: linear-gradient(135deg, #2710BF 0%, #1e0d8c 100%);
}
#testimonials .testimonial-card:nth-child(3) .testimonial-avatar {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}
#testimonials .testimonial-card:nth-child(4) .testimonial-avatar {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}
#testimonials .testimonial-card:nth-child(5) .testimonial-avatar {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}
#testimonials .testimonial-card:nth-child(6) .testimonial-avatar {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}
.page-home #testimonials .testimonial-card:nth-child(1) .testimonial-avatar,
.page-home #testimonials .testimonial-card:nth-child(2) .testimonial-avatar,
.page-home #testimonials .testimonial-card:nth-child(3) .testimonial-avatar,
.page-home #testimonials .testimonial-card:nth-child(4) .testimonial-avatar,
.page-home #testimonials .testimonial-card:nth-child(5) .testimonial-avatar,
.page-home #testimonials .testimonial-card:nth-child(6) .testimonial-avatar {
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}
#testimonials .testimonial-card:hover .testimonial-avatar {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transform: scale(1.02);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

